home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE03 / DBPLUS2 / DBPLUS2.ZIP / QRYPROJ.DPR < prev    next >
Encoding:
Text File  |  1995-06-10  |  166 b   |  14 lines

  1. program Qryproj;
  2.  
  3. uses
  4.   Forms,
  5.   Qrymain in 'QRYMAIN.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8. begin
  9.   Application.CreateForm(TForm1, Form1);
  10.   Application.Run;
  11. end.
  12.  
  13.  
  14.